var x;
      x = $(document);
      x.ready(iniciarEventos);

      function iniciarEventos() {
        var x;
        x = $("#boton1");
        x.click(presionB1);
      }

      function presionB1() {
        document.getElementById('boton1').style.background = "#429bf4";
      }

    var a = $("div.redondeado");

    
Volver al menu principal